home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / textual / pdftops / xpdf / h / Error < prev    next >
Text File  |  1996-06-08  |  452b  |  26 lines

  1. //========================================================================
  2. //
  3. // Error.h
  4. //
  5. // Copyright 1996 Derek B. Noonburg
  6. //
  7. //========================================================================
  8.  
  9. #ifndef ERROR_H
  10. #define ERROR_H
  11.  
  12. #ifdef __GNUC__
  13. //#pragma interface
  14. #endif
  15.  
  16. #include <stdio.h>
  17.  
  18. // File to send error (and other) messages to.
  19. extern FILE *errFile;
  20.  
  21. extern void errorInit();
  22.  
  23. extern void error(int pos, char *msg, ...);
  24.  
  25. #endif
  26.